home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / APW Interfaces / AInclude / E16.NoteSeq < prev    next >
Encoding:
Text File  |  1991-07-01  |  1.6 KB  |  54 lines  |  [TEXT/MPS ]

  1. ; File:  E16.NoteSeq
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-90
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. pitchBend GEQU $0
  9. tempo GEQU $00000001
  10. turnNotesOff GEQU $00000002
  11. jump GEQU $00000003
  12. setVibratoDepth GEQU $00000004
  13. programChange GEQU $00000005
  14. setRegister GEQU $00000006
  15. ifGo GEQU $00000007
  16. incRegister GEQU $00000008
  17. decRegister GEQU $00000009
  18. midiNoteOff GEQU $0000000A
  19. midiNoteOn GEQU $0000000B
  20. midiPolyKey GEQU $0000000C
  21. midiCtlChange GEQU $0000000D
  22. midiProgChange GEQU $0000000E
  23. midiChnlPress GEQU $0000000F
  24. midiPitchBend GEQU $00000010
  25. midiSelChnlMode GEQU $00000011
  26. midiSysExclusive GEQU $00000012
  27. midiSysCommon GEQU $00000013
  28. midiSysRealTime GEQU $00000014
  29. midiSetSysExl GEQU $00000015
  30. callRoutine GEQU $0000001E
  31. commandMask GEQU $0000007F
  32. volumeMask GEQU $0000007F
  33. chord GEQU $00000080
  34. val1Mask GEQU $00007F00
  35. toneMask GEQU $00007F00
  36. noteMask GEQU $00008000
  37. lByte GEQU $00FF0000 ; meaning depends on midi command
  38. durationMask GEQU $07FF0000
  39. trackMask GEQU $78000000
  40. delayMask GEQU $80000000
  41. hByte GEQU $FF000000
  42. noRoomMidiErr GEQU $1A00
  43. noCommandErr GEQU $1A01 ; can't understand the current SeqItem
  44. noRoomErr GEQU $1A02 ; sequence is more than twelve levels deep
  45. startedErr GEQU $1A03 ; Note Sequencer is already started
  46. noNoteErr GEQU $1A04 ; can't find the note to be turned off by the current SeqItem
  47. noStartErr GEQU $1A05 ; Note Sequencer not started yet
  48. instBndsErr GEQU $1A06 ; Instrument number out of Instrument boundary range
  49. nsWrongVer GEQU $1A07 ; incompatible versions of NoteSequencer and NoteSynthesizer
  50. ; offset constants for LocRec
  51. ocurPhraseItem GEQU 0
  52. ocurPattItem GEQU 2
  53. ocurLevel GEQU 4
  54.